home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-30 | 604 b | 23 lines | [TEXT/MPS ] |
- // Copyright © 1995 Apple Computer, Inc. All rights reserved.
- // Release Version: $ 1.0 d11 $
-
- #ifndef PIZZA_H
- #define PIZZA_H
-
- //==========================================================================
- class FW_CRect;
- class CPizzaODFPart;
-
- //==========================================================================
- class FW_CLASS_ATTR CPizza {
- public:
- CPizza(FW_CRect bounds);
- virtual ~CPizza();
- virtual void Draw(FW_CGraphicContext& gc);
- virtual FW_CRect GetBounds();
- private:
- FW_CRect fBounds;
- };
-
- //==========================================================================
- #endif